home *** CD-ROM | disk | FTP | other *** search
/ Programming in Microsoft Windows with C# / Programacion en Microsoft Windows con C#.iso / Codigo / Introducción a Windows Forms / ShowForm / ShowForm.cs next >
Encoding:
Text File  |  2001-01-15  |  290 b   |  15 lines

  1. //---------------------------------------
  2. // ShowForm.cs ⌐ 2001 by Charles Petzold
  3. //---------------------------------------
  4. using System.Windows.Forms;
  5.  
  6. class ShowForm
  7. {
  8.      public static void Main()
  9.      {
  10.           Form form = new Form();
  11.  
  12.           form.Show();
  13.      }
  14. }
  15.